┌────────────────────────────────┐ │ ░░░ ░░▓ ░▓▓ ███ ▓▓░ ▓░░ │ │ ~ M O O N ~ │ └────────────────────────────────┘
prd-web-01.centraldc.gr
LOCATION:
/usr/share/pie/src/Building
☗ ROOT
↻ REFRESH
✎ EDIT FILE
EDITING: ExtensionBinaryNotFound.php
<?php declare(strict_types=1); namespace Php\Pie\Building; use RuntimeException; use function sprintf; class ExtensionBinaryNotFound extends RuntimeException { public static function fromPrePackagedBinary(string $expectedBinaryName): self { return new self(sprintf( 'Expected pre-packaged binary does not exist: %s', $expectedBinaryName, )); } public static function fromExpectedBinary(string $expectedBinaryName): self { return new self(sprintf( 'Build complete, but expected %s does not exist.', $expectedBinaryName, )); } }
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 Build.php
PHP
593 B
2026-04-14 00:00
EDIT
📄 ExtensionBinaryNotFound.php
PHP
637 B
2026-04-14 00:00
EDIT
📄 UnixBuild.php
PHP
9.5 KB
2026-04-14 00:00
EDIT
📄 WindowsBuild.php
PHP
1 KB
2026-04-14 00:00
EDIT